From 6a6999e3fb9b087f30c356664337cdc853b7f6e6 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Thu, 8 Dec 2005 14:28:53 +0000 Subject: [PATCH] Fix start_time parsing on restart -- it's a float, not an int. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendDomainInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index bc319b757e..074d8812c2 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -142,7 +142,7 @@ VM_STORE_ENTRIES = [ ('vcpu_avail', int), ('memory', int), ('maxmem', int), - ('start_time', int), + ('start_time', float), ] VM_STORE_ENTRIES += VM_CONFIG_PARAMS -- 2.30.2